Skip to content

add c program to sort integers #109#113

Open
archu5 wants to merge 1 commit intopclubuiet:masterfrom
archu5:sort
Open

add c program to sort integers #109#113
archu5 wants to merge 1 commit intopclubuiet:masterfrom
archu5:sort

Conversation

@archu5
Copy link
Copy Markdown

@archu5 archu5 commented Oct 25, 2018

resolve #109

Comment thread programs/C/sort.c
temp = arr[j];
arr[j] = arr[k];
arr[k] = temp;
}
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please correct the indentation, Match Opening braces with the closing braces.

Comment thread programs/C/sort.c Outdated
arr[k] = temp;

}
}
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same error

@archu5
Copy link
Copy Markdown
Author

archu5 commented Oct 27, 2018

updated my code #109

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Add a program to sort an integer array in C

2 participants